home *** CD-ROM | disk | FTP | other *** search
- #
- # insert
- #
- insert_menu:
- set textColor = color[white on black]
- clear
- set textColor = color[yellow on blue]
- print " ULTIMATE BOOT CD VER 3.3 "
- print " http://www.ultimatebootcd.com/ "
- print " "
- set textColor = color[white on red]
- print " [INSERT] "
- set textColor = color[white on cyan]
- print " "
- print " [F1] Normal bootup (with boot: prompt) "
- print " [F2] Console (nosound, nomods) "
- print " [F3] Recovery Console (nosound, noswap, nofstab, nomods) "
- print " [F4] Recovery X-Windows (nosound, noswap, nofstab, nomods) "
- print " "
- print " "
- print " "
- print " [F5] Failsafe "
- print " "
- print " "
- print " See http://www.knoppix.net/wiki/Cheat_Codes for a description of the "
- print " cheatcodes used above. "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on blue]
- print " Please select an item (ESC returns to main menu) "
- set textColor = color[white on black]
-
- #
- # Actions
- #
- getkey
- clear
- if ($lastKey == key[f1]); then isolinux
- if ($lastKey == key[f2]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init 2 lang=en apm=power-off vga=normal nosound nomods nomce quiet BOOT_IMAGE=insert
- if ($lastKey == key[f3]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init 2 lang=en apm=power-off vga=normal nosound noswap nofstab nomods BOOT_IMAGE=insert
- if ($lastKey == key[f4]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init lang=en apm=power-off vga=791 nosound noswap nofstab nomods nomce quiet BOOT_IMAGE=insert
- if ($lastKey == key[f5]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init lang=en vga=normal nosound noapic noscsi nodma noapm nousb nopcmcia nofirewire noagp nomce nodhcp xmodule=vesa initrd=miniroot.gz BOOT_IMAGE=insert
- if ($lastKey == key[esc]); then script main.scn
- goto insert_menu
-
-